from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

67288

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.0 (7 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-05-03
dist-kernel - 5.10.216
Ebuild name:

virtual/dist-kernel-5.10.216

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 5.15.158
Ebuild name:

virtual/dist-kernel-5.15.158

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 6.1.90
Ebuild name:

virtual/dist-kernel-6.1.90

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 6.6.30
Ebuild name:

virtual/dist-kernel-6.6.30

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

dist-kernel - 6.8.9
Ebuild name:

virtual/dist-kernel-6.8.9

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-05-03

gaplint - 1.2.1
Ebuild name:

dev-gap/gaplint-1.2.1

Description

Linter for GAP

Added to portage

2024-05-03

gentoo-kernel - 5.10.216
Ebuild name:

sys-kernel/gentoo-kernel-5.10.216

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 5.15.158
Ebuild name:

sys-kernel/gentoo-kernel-5.15.158

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 6.1.90
Ebuild name:

sys-kernel/gentoo-kernel-6.1.90

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 6.6.30
Ebuild name:

sys-kernel/gentoo-kernel-6.6.30

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel - 6.8.9
Ebuild name:

sys-kernel/gentoo-kernel-6.8.9

Description

Linux kernel built with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 5.10.216
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.216

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 5.15.158
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.158

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 6.1.90
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.90

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 6.6.30
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.30

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

gentoo-kernel-bin - 6.8.9
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.8.9

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-05-03

vanilla-kernel - 5.10.216
Ebuild name:

sys-kernel/vanilla-kernel-5.10.216

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 5.15.158
Ebuild name:

sys-kernel/vanilla-kernel-5.15.158

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 6.1.90
Ebuild name:

sys-kernel/vanilla-kernel-6.1.90

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 6.6.30
Ebuild name:

sys-kernel/vanilla-kernel-6.6.30

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

vanilla-kernel - 6.8.9
Ebuild name:

sys-kernel/vanilla-kernel-6.8.9

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-05-03

wine-proton - 9.0.1
Ebuild name:

app-emulation/wine-proton-9.0.1

Description

Valve Software's fork of Wine

Added to portage

2024-05-03

2024-05-02
B-Hooks-EndOfScope - 0.280.0
Ebuild name:

dev-perl/B-Hooks-EndOfScope-0.280.0

Description

Execute code after a scope finished compilation

Added to portage

2024-05-02

CGI - 4.640.0
Ebuild name:

dev-perl/CGI-4.640.0

Description

Simple Common Gateway Interface Class

Added to portage

2024-05-02

CPAN-Meta-Requirements - 2.143.0
Ebuild name:

dev-perl/CPAN-Meta-Requirements-2.143.0

Description

Set of version requirements for a CPAN dist

Added to portage

2024-05-02

CPAN-Requirements-Dynamic - 0.1.0
Ebuild name:

dev-perl/CPAN-Requirements-Dynamic-0.1.0

Description

Dynamic prerequisites in meta files

Added to portage

2024-05-02

Cairo - 1.109.0-r1
Ebuild name:

dev-perl/Cairo-1.109.0-r1

Description

Perl interface to the cairo library

Added to portage

2024-05-02

Clipboard - 0.290.0
Ebuild name:

dev-perl/Clipboard-0.290.0

Description

Copy and paste with any OS

Added to portage

2024-05-02

Compress-Raw-Zlib - 2.212.0
Ebuild name:

perl-core/Compress-Raw-Zlib-2.212.0

Description

Low-Level Interface to zlib compression library

Added to portage

2024-05-02

DBD-mysql - 5.5.0
Ebuild name:

dev-perl/DBD-mysql-5.5.0

Description

MySQL driver for the Perl5 Database Interface (DBI)

Added to portage

2024-05-02

Date-Manip - 6.950.0
Ebuild name:

dev-perl/Date-Manip-6.950.0

Description

Perl date manipulation routines

Added to portage

2024-05-02

DateTime - 1.650.0
Ebuild name:

dev-perl/DateTime-1.650.0

Description

Date and time object

Added to portage

2024-05-02

Devel-CheckOS - 2.0.0
Ebuild name:

dev-perl/Devel-CheckOS-2.0.0

Description

Check what OS we're running on

Added to portage

2024-05-02

Devel-Cover - 1.420.0
Ebuild name:

dev-perl/Devel-Cover-1.420.0

Description

Code coverage metrics for Perl

Added to portage

2024-05-02

Expect - 1.380.0
Ebuild name:

dev-perl/Expect-1.380.0

Description

Expect for Perl

Added to portage

2024-05-02

ExtUtils-CChecker - 0.120.0
Ebuild name:

dev-perl/ExtUtils-CChecker-0.120.0

Description

Configure-time utilities for using C headers

Added to portage

2024-05-02

HTML-Parser - 3.820.0
Ebuild name:

dev-perl/HTML-Parser-3.820.0

Description

Parse HTML documents

Added to portage

2024-05-02

HTML-Tagset - 3.240.0
Ebuild name:

dev-perl/HTML-Tagset-3.240.0

Description

Data tables useful in parsing HTML

Added to portage

2024-05-02

HTTP-Body - 1.230.0
Ebuild name:

dev-perl/HTTP-Body-1.230.0

Description

HTTP Body Parser

Added to portage

2024-05-02

HTTP-Cookies - 6.110.0
Ebuild name:

dev-perl/HTTP-Cookies-6.110.0

Description

Storage of cookies

Added to portage

2024-05-02

IO-Tty - 1.200.0
Ebuild name:

dev-perl/IO-Tty-1.200.0

Description

IO and IO modules for Perl

Added to portage

2024-05-02

LWP-Protocol-https - 6.140.0
Ebuild name:

dev-perl/LWP-Protocol-https-6.140.0

Description

Provide https support for LWP

Added to portage

2024-05-02

Locale-Codes - 3.780.0
Ebuild name:

dev-perl/Locale-Codes-3.780.0

Description

Distribution of Perl modules to handle locale codes

Added to portage

2024-05-02

Module-Build-Tiny - 0.48.0
Ebuild name:

dev-perl/Module-Build-Tiny-0.48.0

Description

Tiny replacement for Module

Added to portage

2024-05-02

Mojolicious - 9.360.0
Ebuild name:

dev-perl/Mojolicious-9.360.0

Description

Real-time web framework

Added to portage

2024-05-02

POSIX-strftime-Compiler - 0.460.0
Ebuild name:

dev-perl/POSIX-strftime-Compiler-0.460.0

Description

GNU C library compatible strftime for loggers and servers

Added to portage

2024-05-02

SDL - 2.548.0-r3
Ebuild name:

dev-perl/SDL-2.548.0-r3

Description

Simple DirectMedia Layer (SDL) bindings for perl

Added to portage

2024-05-02

Scalar-Readonly - 0.30.0
Ebuild name:

dev-perl/Scalar-Readonly-0.30.0

Description

Functions for controlling whether any scalar variable is read-only

Added to portage

2024-05-02

Statistics-Descriptive - 3.80.100
Ebuild name:

dev-perl/Statistics-Descriptive-3.80.100

Description

Module of basic descriptive statistical functions

Added to portage

2024-05-02

Sub-Override - 0.100.0
Ebuild name:

dev-perl/Sub-Override-0.100.0

Description

Perl extension for easily overriding subroutines

Added to portage

2024-05-02

Test-Expander - 2.5.0-r2
Ebuild name:

dev-perl/Test-Expander-2.5.0-r2

Description

Expansion of test functionality that is frequently used while testi

Added to portage

2024-05-02

Test-Files - 0.260.0-r1
Ebuild name:

dev-perl/Test-Files-0.260.0-r1

Description

A Test based module to ease testing with files and dirs

Added to portage

2024-05-02

Test-Inter - 1.110.0
Ebuild name:

dev-perl/Test-Inter-1.110.0

Description

Framework for more readable interactive test scripts

Added to portage

2024-05-02

Test-Kit - 2.160.0
Ebuild name:

dev-perl/Test-Kit-2.160.0

Description

Build custom test packages with only the features you want

Added to portage

2024-05-02

Test-Manifest - 2.24.0
Ebuild name:

dev-perl/Test-Manifest-2.24.0

Description

Interact with a t/test_manifest file

Added to portage

2024-05-02

Test-Warnings - 0.33.0
Ebuild name:

dev-perl/Test-Warnings-0.33.0

Description

Added to portage

2024-05-02

Test2-Tools-Explain - 0.20.0
Ebuild name:

dev-perl/Test2-Tools-Explain-0.20.0

Description

Explain tools for Perl's Test2 framework

Added to portage

2024-05-02

Time-Out - 0.240.0
Ebuild name:

dev-perl/Time-Out-0.240.0

Description

Easily timeout long running operations

Added to portage

2024-05-02

URI - 5.280.0
Ebuild name:

dev-perl/URI-5.280.0

Description

Uniform Resource Identifiers (absolute and relative)

Added to portage

2024-05-02

UUID - 0.340.0
Ebuild name:

dev-perl/UUID-0.340.0

Description

Perl extension for using UUID interfaces as defined in e2fsprogs

Added to portage

2024-05-02

Unix-Mknod - 0.50.0
Ebuild name:

dev-perl/Unix-Mknod-0.50.0

Description

Perl extension for mknod, major, minor, and makedev

Added to portage

2024-05-02

Variable-Magic - 0.640.0
Ebuild name:

dev-perl/Variable-Magic-0.640.0

Description

Associate user-defined magic to variables from Perl

Added to portage

2024-05-02

awscli - 1.32.96
Ebuild name:

app-admin/awscli-1.32.96

Description

Universal Command Line Environment for AWS

Added to portage

2024-05-02

azure-nvme-utils - 0.1.2_p20240502
Ebuild name:

sys-apps/azure-nvme-utils-0.1.2_p20240502

Description

Utility to help identify Azure NVMe devices

Added to portage

2024-05-02

boto3 - 1.34.96
Ebuild name:

dev-python/boto3-1.34.96

Description

The AWS SDK for Python

Added to portage

2024-05-02

botocore - 1.34.96
Ebuild name:

dev-python/botocore-1.34.96

Description

Low-level, data-driven core of boto 3

Added to portage

2024-05-02

csvkit - 2.0.0
Ebuild name:

dev-python/csvkit-2.0.0

Description

A suite of utilities for converting to and working with CSV

Added to portage

2024-05-02

dcfldd - 1.9.1-r1
Ebuild name:

sys-apps/dcfldd-1.9.1-r1

Description

enhanced dd with features for forensics and security

Added to portage

2024-05-02

distrobox - 1.7.2.0
Ebuild name:

app-containers/distrobox-1.7.2.0

Description

Use any Linux distribution inside your terminal (powered by docker

Added to portage

2024-05-02

emacs-updater - 1.18
Ebuild name:

app-admin/emacs-updater-1.18

Description

Rebuild Emacs packages

Added to portage

2024-05-02

exo - 1.77.2
Ebuild name:

app-admin/exo-1.77.2

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2024-05-02

ffmpeg - 6.1.1-r6
Ebuild name:

media-video/ffmpeg-6.1.1-r6

Description

Complete solution to record/convert/stream audio and video. Includes li

Added to portage

2024-05-02

free42 - 3.1.8
Ebuild name:

app-emulation/free42-3.1.8

Description

An HP-42S Calculator Simulator

Added to portage

2024-05-02

fzf - 0.51.0
Ebuild name:

app-shells/fzf-0.51.0

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2024-05-02

gcc - 11.4.1_p20240501
Ebuild name:

sys-devel/gcc-11.4.1_p20240501

Description

The GNU Compiler Collection

Added to portage

2024-05-02

genkernel - 4.3.14
Ebuild name:

sys-kernel/genkernel-4.3.14

Description

Gentoo automatic kernel building scripts

Added to portage

2024-05-02

gentoo-sources - 5.10.216
Ebuild name:

sys-kernel/gentoo-sources-5.10.216

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 5.15.158
Ebuild name:

sys-kernel/gentoo-sources-5.15.158

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 6.1.90
Ebuild name:

sys-kernel/gentoo-sources-6.1.90

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 6.6.30
Ebuild name:

sys-kernel/gentoo-sources-6.6.30

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gentoo-sources - 6.8.9
Ebuild name:

sys-kernel/gentoo-sources-6.8.9

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-05-02

gnubg - 1.08.003
Ebuild name:

games-board/gnubg-1.08.003

Description

GNU BackGammon

Added to portage

2024-05-02

go-tools - 0.20.0
Ebuild name:

dev-go/go-tools-0.20.0

Description

Tools that support the Go programming language (godoc, etc.)

Added to portage

2024-05-02

guile-git - 0.7.0
Ebuild name:

dev-scheme/guile-git-0.7.0

Description

Guile bindings of git

Added to portage

2024-05-02

gzdoom - 4.12.2
Ebuild name:

games-fps/gzdoom-4.12.2

Description

A modder-friendly OpenGL source port based on the DOOM engine

Added to portage

2024-05-02

harfbuzz - 8.4.0
Ebuild name:

media-libs/harfbuzz-8.4.0

Description

An OpenType text shaping engine

Added to portage

2024-05-02

hitimes - 3.0.0
Ebuild name:

dev-ruby/hitimes-3.0.0

Description

A fast, high resolution timer library

Added to portage

2024-05-02

icu - 75.1
Ebuild name:

dev-libs/icu-75.1

Description

International Components for Unicode

Added to portage

2024-05-02

icu-layoutex - 75.1
Ebuild name:

dev-libs/icu-layoutex-75.1

Description

External layout part of International Components for Unicode

Added to portage

2024-05-02

kismet - 2023.07.1-r1
Ebuild name:

net-wireless/kismet-2023.07.1-r1

Description

IEEE 802.11 wireless LAN sniffer

Added to portage

2024-05-02

libsdl2 - 2.30.3
Ebuild name:

media-libs/libsdl2-2.30.3

Description

Simple Direct Media Layer

Added to portage

2024-05-02

linode-cli - 5.49.0
Ebuild name:

app-admin/linode-cli-5.49.0

Description

Official command-line interface for interacting with the Linode API

Added to portage

2024-05-02

lvm2 - 2.03.22-r5
Ebuild name:

sys-fs/lvm2-2.03.22-r5

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2024-05-02

mailx - 8.1.2.20220412
Ebuild name:

mail-client/mailx-8.1.2.20220412

Description

The mail program, which is used to send mail via shell scripts

Added to portage

2024-05-02

marshmallow - 3.21.2
Ebuild name:

dev-python/marshmallow-3.21.2

Description

A library for converting to and from native Python datatypes

Added to portage

2024-05-02

movit - 1.7.1
Ebuild name:

media-video/movit-1.7.1

Description

High-performance, high-quality video filters for the GPU

Added to portage

2024-05-02

notion - 4.0.2_p20220613-r1
Ebuild name:

x11-wm/notion-4.0.2_p20220613-r1

Description

Notion is a tiling, tabbed window manager for the X window system

Added to portage

2024-05-02

openblas - 0.3.26-r1
Ebuild name:

sci-libs/openblas-0.3.26-r1

Description

Optimized BLAS library based on GotoBLAS2

Added to portage

2024-05-02

paste - 3.10.1
Ebuild name:

dev-python/paste-3.10.1

Description

Tools for using a Web Server Gateway Interface stack

Added to portage

2024-05-02

pecl-event - 3.1.3
Ebuild name:

dev-php/pecl-event-3.1.3

Description

PHP wrapper for libevent2

Added to portage

2024-05-02

perl-Compress-Raw-Zlib - 2.212.0
Ebuild name:

virtual/perl-Compress-Raw-Zlib-2.212.0

Description

Virtual for

Added to portage

2024-05-02

plotly - 5.22.0
Ebuild name:

dev-python/plotly-5.22.0

Description

Browser-based graphing library for Python

Added to portage

2024-05-02

plus42 - 1.1.10
Ebuild name:

app-emulation/plus42-1.1.10

Description

An Enhanced HP-42S Calculator Simulator

Added to portage

2024-05-02

pyzmq - 26.0.3
Ebuild name:

dev-python/pyzmq-26.0.3

Description

Lightweight and super-fast messaging library built on top of the ZeroMQ lib

Added to portage

2024-05-02

qsynth - 0.9.91
Ebuild name:

media-sound/qsynth-0.9.91

Description

Qt application to control FluidSynth

Added to portage

2024-05-02

qtbase - 6.7.0-r2
Ebuild name:

dev-qt/qtbase-6.7.0-r2

Description

Cross-platform application development framework

Added to portage

2024-05-02

quotatool - 1.6.4
Ebuild name:

sys-fs/quotatool-1.6.4

Description

Command-line utility for filesystem quotas

Added to portage

2024-05-02

racket-mode - 1_p20231214
Ebuild name:

app-emacs/racket-mode-1_p20231214

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-05-02

racket-mode - 1_p20240130
Ebuild name:

app-emacs/racket-mode-1_p20240130

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-05-02

racket-mode - 1_p20240130
Ebuild name:

app-emacs/racket-mode-1_p20240130

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-05-02

racket-mode - 9999
Ebuild name:

app-emacs/racket-mode-9999

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile, and mor

Added to portage

2024-05-02

referencing - 0.35.1
Ebuild name:

dev-python/referencing-0.35.1

Description

Cross-specification JSON referencing (JSON Schema, OpenAPI...)

Added to portage

2024-05-02

request_store - 1.7.0
Ebuild name:

dev-ruby/request_store-1.7.0

Description

Per-request global storage for Rack

Added to portage

2024-05-02

rq - 1.16.2
Ebuild name:

dev-python/rq-1.16.2

Description

Simple, lightweight library for creating and processing background jobs

Added to portage

2024-05-02

simde - 0.8.2
Ebuild name:

dev-libs/simde-0.8.2

Description

Header-only library providing implementations of SIMD instruction sets

Added to portage

2024-05-02

systemctl-tui - 0.3.4
Ebuild name:

sys-apps/systemctl-tui-0.3.4

Description

A simple TUI for interacting with systemd services and their logs

Added to portage

2024-05-02

testfixtures - 8.2.0
Ebuild name:

dev-python/testfixtures-8.2.0

Description

A collection of helpers and mock objects for unit tests and doc tests

Added to portage

2024-05-02

tiff - 4.6.0-r1
Ebuild name:

media-libs/tiff-4.6.0-r1

Description

Tag Image File Format (TIFF) library

Added to portage

2024-05-02

util-linux - 2.39.4
Ebuild name:

sys-apps/util-linux-2.39.4

Description

Various useful Linux utilities

Added to portage

2024-05-02

util-linux - 2.40.1_rc1
Ebuild name:

sys-apps/util-linux-2.40.1_rc1

Description

Various useful Linux utilities

Added to portage

2024-05-02

vanilla-sources - 4.19.313
Ebuild name:

sys-kernel/vanilla-sources-4.19.313

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 5.10.216
Ebuild name:

sys-kernel/vanilla-sources-5.10.216

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 5.15.158
Ebuild name:

sys-kernel/vanilla-sources-5.15.158

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 5.4.275
Ebuild name:

sys-kernel/vanilla-sources-5.4.275

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 6.1.90
Ebuild name:

sys-kernel/vanilla-sources-6.1.90

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 6.6.30
Ebuild name:

sys-kernel/vanilla-sources-6.6.30

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

vanilla-sources - 6.8.9
Ebuild name:

sys-kernel/vanilla-sources-6.8.9

Description

Full sources for the Linux kernel

Added to portage

2024-05-02

virtualbox-kvm - 7.0.14_pre20240502
Ebuild name:

app-emulation/virtualbox-kvm-7.0.14_pre20240502

Description

Family of powerful x86 virtualization products for

Added to portage

2024-05-02

wluma - 4.4.0-r1
Ebuild name:

sys-power/wluma-4.4.0-r1

Description

Automatic brightness adjustment based on screen contents and ALS

Added to portage

2024-05-02

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 66.9 ms